home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Programming in C++ - Start to Finish
/
GameProgrammingS.iso
/
Peon
/
PeonSDK-Win32-1.0.0.exe
/
{app}
/
PeonMain
/
source
/
Quaternion.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
2005-11-18
|
208b
|
19 lines
#include "Quaternion.h"
namespace peon
{
Quaternion::Quaternion(float _x, float _y, float _z, float _w)
{
x = _x;
y = _y;
z = _z;
w = _w;
}
Quaternion::~Quaternion()
{
}
}